All Questions
66 questions
0votes
0answers
172views
Watch functions accumulate when Angular UI modal is opened
I have the following code in a directive. The directive is included in an Angular UI modal: var watchObjects = function(){ scope.vars.forEach(function(elem,i){ scope.$watch('vars['...
5votes
3answers
2kviews
Avoid using $timeout in Angular UI Modal
In this plunk I have an Angular UI Modal wrapped in a directive. From the controller, I call a method to open the modal, but to do so I need to use $timeout, otherwise, the DOM hasn't finished ...
0votes
1answer
660views
Bootstrap alert message is not working inside angular run blocks under ui-router?
I am doing sample application to autologut if user is idle for 30 Min. before 1 minutes to logOut have to show an warning message to the user. So i have calculated the minutes and show the warning ...
0votes
1answer
3kviews
how to select default value of ui select?
could you please tell me how to set default value in UI -select . here is my code http://plnkr.co/edit/tCrEM4oC9iMSYZffbEAX?p=preview I want "Adrian" should select as by default .could you please tell ...
2votes
2answers
7kviews
how to select value in UI select value?
could you please tell me how to select value in UI-select value ? Actually when user select any name I want to select age of item .Here is my code http://plnkr.co/edit/InxOyQRjrlrDJtx2VuzI?p=preview ...
1vote
2answers
2kviews
Angular UI Bootstrap modal display during $http request
I am trying to create a directive that uses angular ui bootstrap modal. I would like to open this directive from my controller when a $http request is made, and close it when the request resolves. I'm ...
1vote
1answer
371views
Typeahead seems to lag one $http request behind, whats the bug here?
I know Customizing out of the box typeahead directive is not a good idea, so went ahead and created another directive called type-ahead-custom for my customization. here's plunker https://plnkr.co/...
4votes
1answer
655views
UI Bootstrap modal in directive- multiple modals but only one opens
As seen in this Plunkr, I have two modals, each in separate directive of modal-one and modal-two. The problem is, that only modal one is being opened, even when clicking on modal two button. I guess ...
1vote
2answers
2kviews
Controller 'uibCarousel', required by directive 'uibSlide', can't be found when wrapping
I have a directive that wraps that carousel directive. When I replace the slides object it comes up with an error saying "Controller 'uibCarousel', required by directive 'uibSlide', can't be found ...
3votes
1answer
2kviews
Angularjs Ui grid grouping formatting is needed
I am using Angularjs ui grid grouping functionality. Please see the image, When displaying group sum, by default it is getting displayed as 'total :' but I want to change it to 'Total' (capital 'T') ...
0votes
1answer
932views
Angularjs ui grid with grouping column sequence is getting jumbled up
I am using AngularJs ui grid with grouping. The table is displaying fine but the problem I am facing is that the months sequence in the table is getting jumbled up. Please find my Plunker. In the ...
0votes
3answers
3kviews
ng-cloak not solving the initial flicker issue with Angularjs UI Bootstrap tabset
I am using Angularjs UI Bootstrap Tab set. In order to avoid initial flicker issue, with tab names, I am using ng-cloak, but surprisingly still the initial flicker is appearing. I guess it is due to ...
2votes
2answers
3kviews
Angular spinner is not appearing
I am using urish/angular-spinner but it is not working when I try to use it in controller through $scope.startSpin() and $scope.stopSpin(); Please find my plunker at Plunker. Here the spinner is not ...
1vote
1answer
469views
need inner action list supported angular js dropdown
Can any one provide me reference to angularjs dropdown with action links as shown in the image? From the action list if we mouse over on any lable separate action list should be shown out. Please see ...
1vote
0answers
440views
issue extending angular-ui-bootstrap tooltip
I'm attempting to build an extended version of the Angular UI Bootstrap tooltip although it's really more of a translation of the $modal provider into a tooltip provider my intent is to create a ...